home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 52
/
Amiga Format AFCD52 (Issue 136, May 2000).iso
/
-in_the_mag-
/
workbench
/
scanning
/
scantek
/
rexx
/
st2arteffect.strx
< prev
next >
Wrap
Text File
|
2000-03-05
|
665b
|
40 lines
/*
* $VER: ST2ArtEffect.strx 1.0 (29.05.97) Waldemar Zöhner
*
* Requirements: ScanTek V3.0 or higher
* ArtEffekt 2.0 or higher
*
* Description: Load the last scanned image direct into ArtEffekt.
*
* Uses: RC contains the Errorlevel of each ScanTek command
* SCANTEK.LASTERROR contains the related error string
* RESULT contains the result of some ScanTek command
*
*/
Options FailAt 100
Options Results
Address SCANTEK1
GetImageName
IF rc > 0
THEN
DO
say SCANTEK.LASTERROR
EXIT
END;
say 'GetImageName Result is 'Result
Address "ArtEffect"
loadpic Result
EXIT